Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update all non-major dependencies #76

Merged
merged 2 commits into from
Nov 7, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 31, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
github.com/ThreeDotsLabs/watermill require patch v1.3.4 -> v1.3.5
github.com/bufbuild/protovalidate-go require minor v0.3.2 -> v0.4.0
github.com/go-co-op/gocron require patch v1.35.0 -> v1.35.3
github.com/go-kratos/kratos/contrib/log/zap/v2 require digest 6c026bc -> e38a364
github.com/go-kratos/kratos/contrib/registry/consul/v2 require digest 6c026bc -> e38a364
github.com/go-kratos/kratos/v2 require patch v2.7.0 -> v2.7.1
github.com/gocolly/colly/v2 require digest a6e3d81 -> 3c987f1
github.com/google/go-cmp require minor v0.5.9 -> v0.6.0
github.com/google/uuid require minor v1.3.1 -> v1.4.0
github.com/hashicorp/consul/api require minor v1.25.1 -> v1.26.1
github.com/mattn/go-sqlite3 require patch v1.14.17 -> v1.14.18
github.com/meilisearch/meilisearch-go require minor v0.25.1 -> v0.26.0
github.com/redis/go-redis/v9 require minor v9.2.1 -> v9.3.0
github.com/tuihub/protos require patch v0.2.39 -> v0.2.41
golang.org/x/crypto require minor v0.13.0 -> v0.14.0
golang.org/x/exp require digest 9212866 -> 7918f67
google.golang.org/grpc require minor v1.58.3 -> v1.59.0

Release Notes

ThreeDotsLabs/watermill (github.com/ThreeDotsLabs/watermill)

v1.3.5

Compare Source

What's Changed

New Contributors

Full Changelog: ThreeDotsLabs/watermill@v1.3.4...v1.3.5

bufbuild/protovalidate-go (github.com/bufbuild/protovalidate-go)

v0.4.0

Compare Source

What's Changed

New Contributors

Full Changelog: bufbuild/protovalidate-go@v0.3.4...v0.4.0

v0.3.4

Compare Source

What's Changed

New Contributors

Full Changelog: bufbuild/protovalidate-go@v0.3.3...v0.3.4

v0.3.3

Compare Source

What's Changed

New Contributors

Full Changelog: bufbuild/protovalidate-go@v0.3.2...v0.3.3

go-co-op/gocron (github.com/go-co-op/gocron)

v1.35.3

Compare Source

What's Changed

New Contributors

Full Changelog: go-co-op/gocron@v1.35.2...v1.35.3

v1.35.2

Compare Source

What's Changed

Full Changelog: go-co-op/gocron@v1.35.1...v1.35.2

v1.35.1

Compare Source

What's Changed

New Contributors

Full Changelog: go-co-op/gocron@v1.35.0...v1.35.1

go-kratos/kratos (github.com/go-kratos/kratos/v2)

v2.7.1

Compare Source

contrib -> 6cdd818

Chores
  • chore: fix typo var name in shell (#​2955)
Others
  • bugfix: fix map decode (#​2979)
  • ci: support go version 1.21.x
New Contributors

Full Changelog: go-kratos/kratos@v2.7.0...v2.7.1

google/go-cmp (github.com/google/go-cmp)

v0.6.0

Compare Source

New API:

  • (#​340) Add cmpopts.EquateComparable

Documentation changes:

  • (#​337) Use of hotlinking of Go identifiers

Build changes:

  • (#​325) Remove purego fallbacks

Testing changes:

  • (#​322) Run tests for Go 1.20 version
  • (#​332) Pin GitHub action versions
  • (#​327) set workflow permission to read-only
google/uuid (github.com/google/uuid)

v1.4.0

Compare Source

Features
  • UUIDs slice type with Strings() convenience method (#​133) (cd5fbbd)
Fixes
  • Clarify that Parse's job is to parse but not necessarily validate strings. (Documents current behavior)
mattn/go-sqlite3 (github.com/mattn/go-sqlite3)

v1.14.18

Compare Source

meilisearch/meilisearch-go (github.com/meilisearch/meilisearch-go)

v0.26.0: 🐹

Compare Source

⚠️ Breaking changes: Enhanced Enumeration for Task Types & Statuses

The Meilisearch Go client has undergone a significant enhancement in how it handles task types and statuses. In prior versions, developers interfaced with tasks using generic strings. This methodology, while functional, lacked clarity and posed maintenance challenges.

TaskType and TaskStatus have transitioned from generic strings to definitive constants. This change augments code clarity, minimizes potential errors, and paves the way for smoother future updates.

Quick Exemple

// Before:
taskType := "documentDeletion"
...

// After:
taskType := meilisearch.TaskTypeDocumentDeletion

Real world example

// Before:
func Before() {
	resp, _ := meilisearchClient.GetTasks(&meilisearch.TasksQuery{
		Statuses: []string("enqueued", "processing"),
		Types: []string("documentDeletion", "documentAdditionOrUpdate"),
	})

	for _, task := range resp.Results {
		if task.Status == "processing" {
			// ...
		}

		if task.Type == "documentDeletion" {
			// ...
		}
	}
}

// After:
func After() {
	resp, _ := meilisearchClient.GetTasks(&meilisearch.TasksQuery{
		Statuses: []meilisearch.TaskStatus{
			meilisearch.TaskStatusEnqueued,
			meilisearch.TaskStatusProcessing,
		},
		Types: []meilisearch.TaskType{
			meilisearch.TaskTypeDocumentDeletion,
			meilisearch.TaskTypeDocumentAdditionOrUpdate,
		},
	})

	for _, task := range resp.Results {
		if task.Status == meilisearch.TaskStatusProcessing {
			// ...
		}

		if task.Type == meilisearch.TaskTypeDocumentDeletion {
			// ...
		}
	}
}

🚀 Enhancements

Thanks again to @​42atomys, @​curquiza, @​datbeohbbh, and @​tadejsv! 🎉

redis/go-redis (github.com/redis/go-redis/v9)

v9.3.0: 9.3.0

Compare Source

What's new?

JSON support

We are continuing to add support for more Redis data types in Go-Redis. Today, we are happy to announce support for JSON. JSON is a Redis data structure for storing, querying, and manipulating a single JSON document.

With a JSON key in Redis, you can:

  • Use it as a versatile hierarchical data type
  • Opt for it as a sophisticated alternative to the traditional hash data structure
  • Treat it as a singular document in a document-based database

The following example demonstrate how to get started with JSON in Go-Redis:

var ctx = context.Background()
client := redis.NewClient(&redis.Options{
	Addr: "localhost:6379",
})

type Bicycle struct {
	Brand       string
	Model       string
	Price       int
}

bicycle := Bicycle{
	Brand: "Velorim",
	Model: "Jigger",
	Price: 270,
}

_, err := client.JSONSet(ctx, "bicycle:1", "$", bicycle).Result()
if err != nil {
	panic(err)
}

res, err := client.JSONGet(ctx, "bicycle:1", ".Model").Result()
if err != nil {
	panic(err)
}
fmt.Println("bicycle:1 model is", res)

Learn more about JSON support in Redis

Other notable improvements

🐛 Bug Fixes

  • Handle wrapped errors in scripter.Run (#​2674)
  • BUG: BFReserveArgs - error_rate & capacity (#​2763)
  • fix: free turn of connection pool when leave with error (#​2658)
  • Add BitMapCmdable to Cmdable. (#​2737)

🧰 Maintenance

  • Option types must propagage missing fields (#​2726)
  • fix missing fields in different Options (#​2757)
  • update PubSub.Channel documentation (#​2761)
  • Linking to Redis learning resources (#​2759)
  • Creating CODEOWNERS for documentation (#​2749)
  • chore(deps): bump rojopolis/spellcheck-github-actions from 0.33.1 to 0.34.0 (#​2740)
  • chore(deps): bump google.golang.org/grpc from 1.55.0 to 1.56.3 in /example/otel (#​2775)
  • chore(deps): bump golang.org/x/net from 0.10.0 to 0.17.0 in /example/otel (#​2776)
  • Fix OpenTelemetry link in README (#​2755)

Contributors

We'd like to thank all the contributors who worked on this release!

@​Sovietaced, @​chayim, @​chenjie199234, @​cyningsun, @​dependabot, @​dependabot[bot], @​fred84, @​nic-gibson, @​ofekshenawa, @​peczenyj, @​sethrylan, @​snaffi, @​tzq0301 and @​vmihailenco

tuihub/protos (github.com/tuihub/protos)

v0.2.41

Compare Source

Features
  • gebura: Add SyncExternalApps, SyncExternalAccountApps (a1bf390)

v0.2.40

Compare Source

Features
Bug Fixes
grpc/grpc-go (google.golang.org/grpc)

v1.59.0: Release 1.59.0

Compare Source

Behavior Changes

  • balancer: grpc will switch to case-sensitive balancer names soon; log a warning if a capital letter is encountered in an LB policy name (#​6647)
  • server: allow applications to send arbitrary data in the grpc-status-details-bin trailer (#​6662)
  • client: validate grpc-status-details-bin trailer and pass through the trailer to the application directly (#​6662)

New Features

  • tap (experimental): Add Header metadata to tap handler (#​6652)
  • grpc: channel idleness enabled by default with an idle_timeout of 30m (#​6585)

Documentation

  • examples: add an example of flow control behavior (#​6648)

Bug Fixes

  • xds: fix hash policy header to skip "-bin" headers and read content-type header as expected (#​6609)

Configuration

📅 Schedule: Branch creation - "before 4am on the first day of the month" in timezone Asia/Singapore, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the renovate label Oct 31, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 0f64b39 to 16459b1 Compare November 7, 2023 08:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 16459b1 to 2750f58 Compare November 7, 2023 14:22
Copy link
Contributor Author

renovate bot commented Nov 7, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@MuZhou233 MuZhou233 merged commit 7f573a5 into master Nov 7, 2023
2 checks passed
@MuZhou233 MuZhou233 deleted the renovate/all-minor-patch branch November 7, 2023 14:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant